home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / CSCdx39981.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  87 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Script License for details
  5. #
  6. # Thanks to Nicolas FISCHBACH (nico@securite.org) for his help
  7. #
  8. # Ref:  http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  9.  
  10.  
  11. if(description)
  12. {
  13.  script_id(11295);
  14.  script_bugtraq_id(5625);
  15.  script_version("$Revision: 1.4 $");
  16.  script_cve_id("CAN-2002-1095");
  17.  
  18.  
  19.  name["english"] = "CSCdx39981";
  20.  
  21.  script_name(english:name["english"]);
  22.  
  23.  desc["english"] = "
  24. The remote VPN concentrator is subject to a VPN client
  25. authentication vulnerability that can force a reload of the
  26. conectrator when a very large string for the username prompt is sent.
  27.  
  28. This vulnerability is documented as Cisco bug ID CSCdx39981
  29.  
  30. Solution : 
  31. http://www.cisco.com/warp/public/707/vpn3k-multiple-vuln-pub.shtml
  32. Risk factor : Medium
  33.  
  34. *** As Nessus solely relied on the banner of the remote host
  35. *** this might be a false positive
  36. ";
  37.  script_description(english:desc["english"]);
  38.  
  39.  summary["english"] = "Uses SNMP to determine if a flaw is present";
  40.  script_summary(english:summary["english"]);
  41.  
  42.  script_category(ACT_GATHER_INFO);
  43.  
  44.  script_copyright(english:"This script is (C) 2003 Renaud Deraison");
  45.  
  46.  script_family(english:"CISCO");
  47.  
  48.  script_dependencie("snmp_sysDesc.nasl");
  49.  script_require_keys("SNMP/community",
  50.               "SNMP/sysDesc",
  51.               "CISCO/model");
  52.  
  53.  exit(0);
  54. }
  55.  
  56.  
  57.  
  58. # The code starts here
  59. ok=0;
  60.  
  61. os = get_kb_item("SNMP/sysDesc"); if(!os)exit(0);
  62.  
  63.  
  64.  
  65.  
  66. # Is this a VPN3k concentrator ?
  67. if(!egrep(pattern:".*VPN 3000 Concentrator.*", string:os))exit(0);
  68.  
  69. # 3.6.Rel
  70. if(egrep(pattern:".*Version 3\.6\.Rel.*", string:os))ok = 1;
  71.  
  72. # < 3.5.5
  73. if(egrep(pattern:".*Version 3\.5\.Rel.*", string:os))ok = 1;
  74. if(egrep(pattern:".*Version 3\.5\.[0-4].*", string:os))ok = 1;
  75.  
  76. # 3.1.x
  77. if(egrep(pattern:".*Version 3\.1\.*", string:os))ok = 1;
  78.  
  79. # 3.0.x
  80. if(egrep(pattern:".*Version 3\.0\..*", string:os))ok = 1;
  81.  
  82. # 2.x.x
  83. if(egrep(pattern:".*Version 2\..*", string:os))ok = 1;
  84.  
  85.  
  86. if(ok)security_warning(port:161, proto:"udp");
  87.